crypto/tls.clientHandshakeState.session (field)
13 uses
crypto/tls (current package)
handshake_client.go#L36: session *SessionState // the session being resumed
handshake_client.go#L271: session: session,
handshake_client.go#L744: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L790: if hs.session.version != c.vers {
handshake_client.go#L795: if hs.session.cipherSuite != hs.suite.id {
handshake_client.go#L801: if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
handshake_client.go#L807: hs.masterSecret = hs.session.secret
handshake_client.go#L808: c.extMasterSecret = hs.session.extMasterSecret
handshake_client.go#L809: c.peerCertificates = hs.session.peerCertificates
handshake_client.go#L811: c.verifiedChains = hs.session.verifiedChains
handshake_client.go#L812: c.ocspResponse = hs.session.ocspResponse
handshake_client.go#L815: if len(c.scts) == 0 && len(hs.session.scts) != 0 {
handshake_client.go#L816: c.scts = hs.session.scts
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |